home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / xml4j.jar / com / ibm / xml / parser / TXNotation$NotationImpl.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-08-30  |  1.1 KB  |  22 lines

  1. package com.ibm.xml.parser;
  2.  
  3. import org.w3c.dom.Node;
  4. import org.w3c.dom.Notation;
  5.  
  6. class TXNotation$NotationImpl extends TXNotation implements Notation {
  7.    TXNotation$NotationImpl(String var1, ExternalID var2) {
  8.       super(var1, var2);
  9.    }
  10.  
  11.    public Node getParentNode() {
  12.       return null;
  13.    }
  14.  
  15.    public Node cloneNode(boolean var1) {
  16.       ((Child)this).checkFactory();
  17.       TXNotation$NotationImpl var2 = (TXNotation$NotationImpl)super.factory.createNotation(super.name, super.externalID).getNotationImpl();
  18.       ((Child)var2).setFactory(((Child)this).getFactory());
  19.       return var2;
  20.    }
  21. }
  22.